home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
kuang
/
kuangeleven28.lha
/
Rexx
/
Pinkybrain.amirx
< prev
next >
Wrap
Text File
|
1996-12-30
|
3KB
|
97 lines
/* */
/* Pinky & Brain Script 1.0 */
/* Stolen from "Slack" and rewritten by K. Stenström */
/* (crissy@tripnet.se) */
/* */
/* Slack is a script for ircII put together by Rev. Krusty */
/* (rkrusty@primenet.com) */
/* */
/* Fixed by Ariel to accept channel and number as arguments */
/* Part of Kuang Eleven v2 AmIRC distribution */
options results
PARSE ARG nick channel rand .
IF nick = "" THEN DO
"ECHO P=«piNkY» Usage: piNkY [NiCk] <ChANnEl> <NuM>"
EXIT
END
IF channel = "" THEN DO
"GETCHANNEL"
channel=result
END
IF rand = "" THEN DO
seed = Time(secs)
rand = Random(1,11,seed)
END
/******************************************************************************/
IF rand = 1 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but where will we find a duck and a hose at this hour?"
EXIT
END
IF rand = 2 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" I think so, "nick", but where will we find an open tattoo parlor at this time of night?"
EXIT
END
IF rand = 3 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but if we didn't have ears, we'd look like weasels."
EXIT
END
IF rand = 4 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh... yeah, "nick", but where are we going to find rubber pants our size?"
EXIT
END
IF rand = 5 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but balancing a family and a career.. oooh, it's all too much for me."
EXIT
END
IF rand = 6 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Wuh, I think so, "nick", but isn't Regis Philbin already married?"
EXIT
END
IF rand = 7 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but burlap chafes me so."
EXIT
END
IF rand = 8 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Sure, "nick", but how are we going to find chaps our size?"
EXIT
END
IF rand = 9 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but we'll never get a monkey to use dental floss."
EXIT
END
IF rand = 10 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" Uh, I think so, "nick", but this time, you wear the tutu."
EXIT
END
IF rand = 11 THEN DO
"SAY "nick" asks: are you pondering what i'm pondering?"
"SAY /kick "channel nick" I think so, "nick", but culottes have a tendency to ride up so."
EXIT
END
EXIT